home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_fire_load.ifx.pre < prev    next >
Text File  |  2004-08-03  |  1KB  |  52 lines

  1. /*
  2.  * EOT_Fire_Load.ifx.pre
  3.  * Written by Gerald Bonnstetter
  4.  *
  5.  * Fire Sequence Effect.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Fire_'
  19.  
  20. lpath  = GETCLIP(base||'Path')
  21. lfile  = GETCLIP(base||'File')
  22. seed   = GETCLIP(base||'Seed')
  23. step   = GETCLIP(base||'StepSize')
  24.  
  25.  
  26. IF lpath   = "" THEN lpath   = "Storage/Fire"
  27. IF seed    = "" THEN seed    = 9883516
  28. IF step    = "" THEN step    =   1
  29.  
  30.  
  31. Gadget.1 = 'STRING  150  10 260 14 "Fire Options File:"' lfile
  32. Gadget.2 = 'FILEREQ 412  10  20 14 "Fire Options File:" 'lpath ' #?' lfile 'AT=1'
  33. Gadget.3 = 'INTEGER 150  26 110 14 "Seed:"' seed
  34. Gadget.4 = 'INTEGER 150  42 110 14 "Step Size:"' step
  35. Gadget.5 = 'END'
  36.  
  37. NewComplexRequest '"Fire Sequence"' Gadget 450 70
  38. IF rc ~= 0 THEN EXIT rc
  39.  
  40. CALL SETCLIP(base||'Path'       , result.2.path)
  41. CALL SETCLIP(base||'File'       , result.2.file)
  42. CALL SETCLIP(base||'Seed'       , result.3)
  43. CALL SETCLIP(base||'StepSize'   , result.4)
  44.  
  45. increment = 0
  46.  
  47. CALL SETCLIP(base||'Increment', increment)
  48.  
  49. undo on
  50.  
  51. EXIT
  52.